5318cf3d75e21aa47ece6c7c3bc31c39db3ab762,src/com/microsoft/azure/documentdb/test/GatewayTests.java,GatewayTests,testCollectionCrud,#,354
Before Change
null).getQueryIterable().toList();
Assert.assertTrue(collections.size() > 0);
// Delete collection.
client.deleteCollection(createdCollection.getSelfLink(), null).close();
// Read collection after deletion.
try {
After Change
null).getQueryIterable().toList();
Assert.assertTrue(collections.size() > 0);
// Delete collection.
client.deleteCollection(createdCollection.getSelfLink(), null);
// Read collection after deletion.
try {